home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
UTILENUS
/
DOSMENU.LZH
/
DOSMENU.ARC
/
DOSMENU.TXT
< prev
next >
Wrap
Text File
|
1991-05-29
|
937b
|
38 lines
A
Print the file README
%A Print to screen or printer (s/p)?;
if "%A" == "p" print readme;
if not "%A" == "p" type readme;
if not "%A" == "p" pause
B
Print documentation file (DOSMENU.DOC) on the printer
print DOSMENU.DOC
C
Print the registration form
print DOSMENU.REG
D
An example of a menu entry which uses a prompt
%A Please enter the disk letter to check:;
chkdsk %A:;
pause
E
An example which uses a prompt and the zero-RAM option
#%A Please enter the disk letter to check:;
chkdsk %A:;
pause
F
Another an example of a menu entry which uses a prompt
%A Please enter the disk letter to check, or "q" to quit:;
if not "%A" == "q" chkdsk %A:;
if not "%A" == "q" pause
G
An example of a menu entry which uses multiple prompts
%A Please enter a disk letter to check:;
%B Please enter another disk letter to check:;
chkdsk %A:;
chkdsk %B:;
pause
H
An example which uses a sub-menu
dosmenu menu2.txt